🛠️ All DevTools

Showing 3341–3360 of 4442 tools

Last Updated
May 02, 2026 at 08:00 PM

[Other] Show HN: Meetup.com and eventribe alternative to small groups Mobile first open-source RSVP platform. Alternative for meetup.com &#x2F; eventribe for small companies and groups. If you have a small group and don&#x27;t want to pay for services you can easily selfhost this solution. Open for improvements and for feedback, ofc.<p>- One-Click Sharing - Each event gets a unique, memorable URL. Share instantly via any platform or messaging app. - No Hassle, No Sign-Ups - Skip registrations and endless forms. Unlike other event platforms, you create and share instantly — no accounts, no barriers. - Effortless Simplicity - Designed to be instantly clear and easy. No learning curve — just open, create, and go.

Found: August 27, 2025 ID: 1096

[Other] Show HN: React Web Camera – Fix <input type=file> single-photo limit What we built<p>React Web Camera is a lightweight, reusable React component that allows users to capture multiple photos in one camera session, in-browser. It works across standard web apps, responsive UIs, and Progressive Web Apps (PWAs)—unlocking a smoother experience than the default &lt;input type=&quot;file&quot; capture&gt; element.<p>The problem<p>On mobile (and increasingly on desktops), using: &lt;input type=&quot;file&quot; accept=&quot;image&#x2F;*&quot; capture=&quot;environment&quot;&gt; only allows taking one picture before the camera closes. Want to add more? You have to reopen it each time.<p>How React Web Camera solves it<p>Opens the camera inline in-browser, Lets the user capture multiple photos in one go, Allows previewing captured photos, removing unwanted ones, and submitting everything in a batch, Fully client-side, respects user privacy, Supported across web, responsive UIs, and installable PWAs.

Found: August 27, 2025 ID: 1091

[Other] Show HN: I made an Animal Crossing style letter editor I made a simple open-source letter editor inspired by Animal Crossing NH. Took me forever to look over each card, but I&#x27;m quite pleased with how it turned out. You can even click the bottle in the bottom right to see a random letter design shared by other users! Now to see how long it stays up...<p>Check out the source code here: <a href="https:&#x2F;&#x2F;github.com&#x2F;IdreesInc&#x2F;Animal-Crossing-Letter-Generator" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;IdreesInc&#x2F;Animal-Crossing-Letter-Generato...</a>

Found: August 27, 2025 ID: 1135

[CLI Tool] Bring Your Own Agent to Zed – Featuring Gemini CLI <a href="https:&#x2F;&#x2F;developers.googleblog.com&#x2F;pt-br&#x2F;gemini-cli-is-now-integrated-into-zed&#x2F;" rel="nofollow">https:&#x2F;&#x2F;developers.googleblog.com&#x2F;pt-br&#x2F;gemini-cli-is-now-in...</a>

Found: August 27, 2025 ID: 1093

[Other] Running our Docker registry on-prem with Harbor

Found: August 27, 2025 ID: 1142

ASCIIFlow

Hacker News (score: 64)

[Other] ASCIIFlow

Found: August 27, 2025 ID: 1089

spf13/cobra

GitHub Trending

[CLI Tool] A Commander for modern Go CLI interactions

Found: August 27, 2025 ID: 1085

[DevOps] Secure and fast microVMs for serverless computing.

Found: August 27, 2025 ID: 1084

microsoft/terminal

GitHub Trending

[CLI Tool] The new Windows Terminal and the original Windows console host, all in the same place!

Found: August 27, 2025 ID: 1083

[API/SDK] Python package for Real-time, Local Speech-to-Text and Speaker Diarization. FastAPI Server & Web Interface

Found: August 27, 2025 ID: 1082

[Other] Show HN: Auto-Match – How We Built Receipt-to-Transaction Matching (Open Source) I’ve been working on automating bookkeeping tasks, and one big pain point was manually reconciling receipts with bank transactions. We built a system that runs in the background, parses receipts (including Gmail), suggests matches, and learns from confirmations to auto-match over time.<p>It&#x27;s built into Midday and fully open-source.<p>Let me know if you have any questions!

Found: August 27, 2025 ID: 1121

[Other] Show HN: Envoy – Command Logger Envoy is a lightweight, background utility that logs your terminal commands. It&#x27;s designed to be a simple and unobtrusive way to keep a history of your shell usage, which can be useful for debugging, tracking work, or just remembering what you did.

Found: August 27, 2025 ID: 1111

Terminal sessions you can bookmark

Hacker News (score: 19)

[Other] Terminal sessions you can bookmark

Found: August 27, 2025 ID: 1146

Codalogy

Product Hunt

[Other] Visualize Any Codebase Instantly Understand any code architecture in minutes. Codalogy analyzes your codebase, breaks it into clear components, and maps functionality & dependencies—so you can skip the digging and simply explore your code visually, coffee in hand.

Found: August 27, 2025 ID: 1087

Rube

Product Hunt

[Other] Let your AI actually get things done for you Rube is a universal MCP that enables you to take actions across 600+ applications from within your AI chat, be it Cursor, Claude, VS Code, etc. It manages authentication and tool selection seamlessly and securely within the chat.

Found: August 27, 2025 ID: 1088

Prompt to Agent

Product Hunt

[Other] Build, deploy, and monetize LangChain agents in under 5 min Build, deploy, and monetize production-ready LangChain agents in under 5 minutes. AI Native Agent platform with instant revenue generation, beginner-friendly prompt-to-agent creation, and advanced IDE for developers. Start earning from your AI agents today.

Found: August 27, 2025 ID: 1092

N8N MARKETPLACE

Product Hunt

[Other] Premium automation templates A marketplace for premium n8n automation templates designed to help creators and businesses save time and scale faster. Keep 100% of what you earn, zero Commission!

Found: August 27, 2025 ID: 1094

[Other] Show HN: Regolith – Regex library that prevents ReDoS CVEs in TypeScript I wanted a safer alternative to RegExp for TypeScript that uses a linear-time engine, so I built Regolith.<p>Why: Many CVEs happen because TypeScript libraries are vulnerable to Regular Expression Denial of Service attacks. I learned about this problem while doing undergraduate research and found that languages like Rust have built-in protection but languages like JavaScript, TypeScript, and Python do not. This library attempts to mitigate these vulnerabilities for TypeScript and JavaScript.<p>How: Regolith uses Rust&#x27;s Regex library under the hood to prevent ReDoS attacks. The Rust Regex library implements a linear-time Regex engine that guarantees linear complexity for execution. A ReDoS attack occurs when a malicious input is provided that causes a normal Regex engine to check for a matching string in too many overlapping configurations. This causes the engine to take an extremely long time to compute the Regex, which could cause latency or downtime for a service. By designing the engine to take at most a linear amount of time, we can prevent these attacks at the library level and have software inherit these safety properties.<p>I&#x27;m really fascinated by making programming languages safer and I would love to hear any feedback on how to improve this project. I&#x27;ll try to answer all questions posted in the comments.<p>Thanks! - Jake Roggenbuck

Found: August 27, 2025 ID: 1080

[Other] GNU Artanis – A fast web application framework for Scheme

Found: August 26, 2025 ID: 1077

[IDE/Editor] Show HN: First background agents in Jetbrains IDEs [video] TLDR: made the first background coding agent that has an isolated workspace and runs locally<p>Howdy - I’m Kevin, co-founder of Firebender, and we built the first background coding agent in android studio &#x2F; Jetbrains!<p>Why not just use Cursor background agents or OpenAI Codex?<p>Both of these require setting up a cloud container and cloning your existing developer environment, and maintaining it. Then when you want to iterate on changes as AI inevitably makes a mistake, you either throw away the work, or have to pull down the branch and clean it up. This feels really clunky. With Firebender, background agents run locally in a lightweight git worktree&#x2F;IDE tab. This means when the agent is done, you can easily clean up the changes and run code with a few clicks.<p>Under the hood, the agent behaves similarly to claude code (didn’t want to reinvent the wheel), but also leverages all of the hooks into IntelliJ sdk like go-to-definition, find usages, auto-imports for accuracy, and it gives a cleaner visual UI for reviewing changes and merging them. You can use any frontier model like gpt-5&#x2F;sonnet-4 as the base.<p>We’ve had to do quite a bit of reverse engineering of the IntelliJ codebase to cleanly set up and manage the isolated environment, and I think you’ll appreciate the simple UX of hitting cmd+enter to run a background agent anywhere.<p>get started docs: <a href="https:&#x2F;&#x2F;docs.firebender.com&#x2F;get-started&#x2F;background-agents">https:&#x2F;&#x2F;docs.firebender.com&#x2F;get-started&#x2F;background-agents</a><p>download the plugin: <a href="https:&#x2F;&#x2F;firebender.com">https:&#x2F;&#x2F;firebender.com</a><p>Would love to get your feedback to help us improve the tool for you! Thanks!

Found: August 26, 2025 ID: 1075
Previous Page 168 of 223 Next